home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Examples / AppKit / ScrollDoodScroll / PostScriptView.h < prev    next >
Encoding:
Text File  |  1992-05-28  |  490 b   |  21 lines

  1. // PostScriptView.h
  2. // By Jayson Adams, NeXT Developer Support Team
  3. // You may freely copy, distribute and reuse the code in this example.
  4. // NeXT disclaims any warranty of any kind, expressed or implied, as to its
  5. // fitness for any particular use.
  6.  
  7. #import <appkit/View.h>
  8.  
  9. @interface PostScriptView:View
  10. {
  11.     id postscriptImage;
  12. }
  13.  
  14. /* instance methods */
  15. - initFrame:(const NXRect *)frameRect;
  16. - free;
  17. - scale:(float)scaleFactor;
  18. - drawSelf:(const NXRect *)rects :(int)rectCount;
  19.  
  20. @end
  21.